home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 25
/
Cream of the Crop 25.iso
/
program
/
tsetguid.zip
/
TEA
/
SET
/
SAMPLE
/
MASKENTR.JAV
< prev
next >
Wrap
Text File
|
1997-02-27
|
1KB
|
34 lines
/*
* Copyright (c) 1996-1997, InetSoft Technology Corp, All Rights Reserved.
*
* The software and information contained herein are copyrighted and
* proprietary to InetSoft Technology Corp. This software is furnished
* pursuant to a written license agreement and may be used, copied,
* transmitted, and stored only in accordance with the terms of such
* license and with the inclusion of the above copyright notice. Please
* refer to the file "COPYRIGHT" for further copyright and licensing
* information. This software and information or any other copies
* thereof may not be provided or otherwise made available to any
* other person.
*/
package tea.set.sample;
import java.applet.*;
import java.awt.*;
import tea.set.*;
/**
* This is a demo applet to show using tea.set.MaskText to build a
* simple data entry form with data validation.
*
* @see MaskText
* @version 1.3, 01/31/97
* @author InetSoft Technology Corp
*/
public class MaskEntry extends Applet {
public void init() {
add(new MaskText("First Name [CAAAAAAAAA] Last Name [CAAAAAAAA]"));
add(new MaskText("Phone # ([999]) [999]-[9999] Extension: [99]"));
}
}